home *** CD-ROM | disk | FTP | other *** search
Makefile | 1998-06-18 | 879 b | 36 lines |
- #
- # DMakefile V3.1
- #
- # Makefile for ToolManager 3.1 (Global)
- #
- # Copyright (C) 1990-98 Stefan Becker
- #
- # This source code is for educational purposes only. You may study it
- # and copy ideas or algorithms from it for your own projects. It is
- # not allowed to use any of the source codes (in full or in parts)
- # in other programs. Especially it is not allowed to create variants
- # of ToolManager or ToolManager-like programs from this source code.
- #
- DIRS = Locale Library Prefs Converter WBStartup Docs
-
- #
- TMPDIR = T:
- TCOMP = $(DIRS:"*":"*/compiled")
- TCLEAN = $(DIRS:"*":"*/cleaned")
-
- all : $(TCOMP)
-
- $(TCOMP) : $(DIRS)
- @CD %(right)
- @Echo "making all in %(right)..."
- @DMake -q
- @CD /
-
- clean : $(TCLEAN)
-
- $(TCLEAN) : $(DIRS)
- @CD %(right)
- @Echo "making clean in %(right)..."
- @DMake -q clean
- @CD /
-